home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / script / silent < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.0 KB  |  34 lines

  1. # This is necessary when you join crowded channels like #report...
  2. # All the join,leave,quit,nick and mode change messages do not appear
  3. # on the screen, unless you have %U somewhere in your STATUS_FORMAT,
  4. # then the changes will be displayed in your status line, which is
  5. # a lot less annoying and distracting.  ;-)
  6.  
  7. alias silent {
  8.     stack push on join
  9.     stack push on leave
  10.     stack push on signoff
  11.     stack push on channel_signoff
  12.     stack push on nick
  13.     stack push on mode
  14.     stack push on topic
  15.         ^on ^join * set status_user Join: $$0 \($$1\)
  16.         ^on ^leave * set status_user Leave: $$0 \($$1\)
  17.         ^on ^signoff * set status_user Signoff: $$*
  18.         ^on ^channel_signoff * set status_user Signoff: $$*
  19.         ^on ^nick * set status_user Nick: $$0 now $$1
  20.         ^on ^mode * set status_user Mode: $$*
  21.         ^on ^topic * set status_user Topic by $$0: $$1-
  22. }
  23.  
  24. alias unsilent {
  25.     stack pop on join
  26.     stack pop on leave
  27.     stack pop on signoff
  28.     stack pop on channel_signoff
  29.     stack pop on nick
  30.     stack pop on mode
  31.     stack pop on topic
  32. }
  33.  
  34.